home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-04-16 | 895 b | 47 lines | [TEXT/CWIE] |
- //----------------------------------------------------------------
- // HFSCluster
- // Copyright: © 1997 - 1998 by Apple Computer, Inc., all rights reserved.
- //
- //
- //----------------------------------------------------------------
- #pragma once
- #ifndef HFSCluster_h
- #define HFSCluster_h
-
- #pragma import on
-
- #if PRAGMA_STRUCT_ALIGN
- #pragma options align=power
- #endif
-
- #include "HFSTextFolderCorpus.h"
- #include "IARouter.h"
- #include "IAStorage.h"
-
- class IAIndex;
-
- #pragma IA_BEGIN_EXPORTS
-
- class HFSCluster: public IACluster {
- public:
- HFSCluster (IAIndex* index, StringPtr c);
- HFSCluster (IAIndex* index, short vRefNum, long dirID);
- virtual ~HFSCluster();
- IADoc* GetNextDoc() const ;
- void Reset();
- private:
- HFSIterator* fHFSIterator;
- long fDirID;
- short fVRefNum;
- };
-
- #pragma IA_END_EXPORTS
-
- #if PRAGMA_STRUCT_ALIGN
- #pragma options align=reset
- #endif
-
- #pragma import reset
-
- #endif
-